diff options
| author | real-zephex <[email protected]> | 2024-04-29 10:06:01 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 10:06:01 +0530 |
| commit | fdc6b602228d923b0c255521ee74289e7a0d94a2 (patch) | |
| tree | 3531fc9fd2fbe178d43e6a1c67d116f30fd4a61e /src/app/anime/[id]/page.jsx | |
| parent | Update README.md (diff) | |
| parent | adjusted the width and height of the image just by a little (diff) | |
| download | dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.tar.xz dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.zip | |
Merge pull request #5 from zephex-alt/master
changes
Diffstat (limited to 'src/app/anime/[id]/page.jsx')
| -rw-r--r-- | src/app/anime/[id]/page.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/anime/[id]/page.jsx b/src/app/anime/[id]/page.jsx index bb7640f..14a5974 100644 --- a/src/app/anime/[id]/page.jsx +++ b/src/app/anime/[id]/page.jsx @@ -19,8 +19,8 @@ export default async function AnimeInfo({ params }) { <p>{info.title}</p>
<Image
src={info.image}
- width={175}
- height={256}
+ width={180}
+ height={260}
alt="Drama"
priority
/>
@@ -46,7 +46,7 @@ export default async function AnimeInfo({ params }) { <p className={styles.animeRelease}>
Release year:
<span>
- {info && info.releaseDate}, {info && info.status}
+ {" "}{info && info.releaseDate}, {info && info.status}
</span>
</p>
</div>
|